home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 25
/
CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso
/
CUCD
/
WWW
/
http
/
www.wirenet.co.uk
/
files
/
thor25_arexx.lha
/
FSE
/
Coolify.fse
< prev
next >
Wrap
Text File
|
1994-12-03
|
573b
|
38 lines
/* Coolify text block - by Troels Walsted Hansen */
options results
YPOS
currline = result
XPOS
currcolumn = result
MSGLENGTH
lastline = result
call open(tfh, "t:UncoolTempFile", W)
do i=currline to lastline
SETPOS 1 i
GETLINE
line = result
if(line ~= "") then do
DELETELINES
i = i-1
end
else break
call writeln(tfh, line)
end
call close(tfh)
address command "Coolify >nil: t:UncoolTempFile t:CoolTempFile"
call delete("t:UncoolTempFile")
SETPOS currcolumn currline
INCLUDEFILE "t:CoolTempFile"
call delete("t:CoolTempFile")
SETPOS currcolumn currline